home *** CD-ROM | disk | FTP | other *** search
/ STraTOS 1997 April & May / STraTOS 1 - 1997 April & May.iso / CD01 / ARCHIVER / TAR-1112.ZOO / tar-1112 / diffs next >
Encoding:
Text File  |  1993-08-27  |  1.3 KB  |  28 lines

  1. diff /var/tar-1.11.2/buffer.c /var/work/tar-1.11.2/buffer.c
  2. 1237a1238,1244
  3. >   /* Atari ST mod: the mintlib macros in <wait.h> (wrongly) expect  */
  4. >   /* WIFSIGNALED etc to use `union wait' instead of int, while they */
  5. >   /* should be able to cast an int to union wait themselves.        */
  6. >   /* So, we replace `int status' by `union wait status'             */
  7. > #ifdef atarist /* Atari ST mod */
  8. >   union wait status;
  9. > #else
  10. 1238a1246
  11. > #endif /* Atari ST mod */
  12. diff /var/tar-1.11.2/extract.c /var/work/tar-1.11.2/extract.c
  13. 617a618,620
  14. > /* Atari ST with MiNT doesn't have a mkfifo() call yet, but does  */
  15. > /* have the S_ISFIFO constant defined. Hmmm... comment it out.    */
  16. > #ifndef atarist /* Atari ST mod */
  17. 633a637
  18. > #endif /* Atari ST mod */
  19. 883a888,893
  20. >       /* Atari ST with MiNT can't do a utime() call for directories yet, */
  21. >       /* since the Fopen() call fails on directories.  The only way to   */
  22. >       /* fix this is to change the kernel, i.e. MiNT itself. Also, the   */
  23. >       /* mintlib could lie and return `yes, I succeeded on this dir'     */
  24. >       /* when in fact it couldn't accomplish anything. We just skip...   */
  25. > #ifndef atarist /* Atari ST modification */
  26. 894a905
  27. > #endif /* Atari ST modification */
  28.